home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mntsca~1.zoo / mntscalc.bin / readme.st < prev    next >
Encoding:
Text File  |  1994-01-12  |  3.6 KB  |  106 lines

  1. SC : A curses based sophisticated spreadsheet for UNIX.
  2.      Ported to ATARI ST (Mint/MultiTOS) by Kees Lemmens; Dec '93
  3.  
  4. Fixed version 1.1: Jan 1994
  5.  
  6.    The backup function didn't always work well: the open() function - with
  7.    3 arguments - caused trouble and BUS errors.
  8.  
  9.    That is why I repalced the backup_file routine by a simple rename, which
  10.    is as good as making a new copy and then overwrite the old one.
  11.  
  12. -------------------------------------------------------------------------
  13.  
  14.  
  15. This spreadsheet is very popular under UNIX users. Under UNIX there is
  16. also an X-windows version with many graphic capabilities, called xspread.
  17.  
  18. It is slightly different from Lotus 123 (or clones) but it certainly
  19. isn't less powerfull and it has a few nice extra features.
  20. Furthermore: ... it is Public Domain. 
  21.  
  22. Features/Missings :
  23.  
  24. - SC is a .ttp program under ATARI, so it can run on every remote terminal
  25.   that is listed in the termcap database or separate TOSWIN.
  26.   It even runs without problems (and fast !) over a modemline, thanks to
  27.   the very efficient way curses works for slow or distant terminals.
  28.  
  29. - As SC is a .TTP program, it doesn't support graphics, so you need i.e.
  30.   GnuPlot to visualize things. (But ... GnuPlot is thousand times more
  31.   sophisticated than any spreadsheet I have ever seen and it can run over
  32.   a modemline when using Tektronix emulation !)
  33.  
  34. - SC sees any character you type as a command and not as input, although
  35.   you can toggle (Ctrl-T n) SC to directly interpret numerical input.
  36.   The latter is also achieved by the commandline option -n 
  37.  
  38.   To insert text there are basically three ways :
  39.     < text         (left justified)
  40.     > text        (right justified)
  41.     " text        (centered)
  42.  
  43.   To insert a number :    = number
  44.   and a formula      :    = expression    (same as in Lotus)
  45.  
  46.   When numerical input is enabled, every 0-9, +, -, . will start a cell
  47.   entry.
  48.  
  49. - Range commands can be given by pressing / (like 123 !)
  50.  
  51.   Look in the manual for details.
  52.    
  53.   If you mark a cell by pressing 'm' , you can copy it to any other cell,
  54.   just by going there and pressing 'c'
  55.  
  56. - Cursor keys :
  57.  
  58.   3 ways :    VI style :    h, j, k, l 
  59.           Emacs    :    ^b, ^f, ^n, ^p
  60.  
  61.   Cursorkeys are only available if your terminal and the termcap entry on
  62.   the ATARI support them.
  63.   The ATARI cursor keys (scancodes) are hardcoded, so on the ATARI console
  64.   the cursor keys will always work (also in TOSWIN).
  65.  
  66. - Shell escapes: the standard shell was taken either from SHELL variable 
  67.   or /bin/sh. I changed the latter in /bin/mintshel.ttp as this is commonly
  68.   used on ATARI.
  69.  
  70.  
  71. Executables
  72. -----------
  73.  
  74. The executable for sc (sc.ttp)  was generated by GCC 2.4.5 with MINTLIBS 34.
  75. PURE C didn't work because it didn't handle the bison/yacc output in a proper
  76. way.
  77.  
  78. The other two (psc.ttp and scqref.ttp) were generated by PURE C with the
  79. MINT libraries and GNU includes (also version 34) because :
  80.  
  81. a:    PURE C is more than 10 times as fast than GCC  !!!
  82. b:    PURE C generates code that is about half the GCC code size !!!
  83. c:    GCC compiler needs about 5 times as much internal memory as PCC !!!
  84.  
  85. GCC is a nice compiler and it compiles almost everything without problems,
  86. but I don't want to wait an hour for my code to be compiled, especially
  87. because I can't use my ATARI for anything else as GCC eats virtually all
  88. internal memory of my 4 MB (!!) MEGA STE.
  89.  
  90.  
  91. Files in this archive
  92. ---------------------
  93.  
  94.     sc.ttp
  95.     psc.ttp
  96.     scqref.ttp
  97.     sc.doc
  98.     psc.doc
  99.     tutorial.sc
  100.     readme        (from original distribution)
  101.     readme.st    (this file)
  102.  
  103.  
  104. Any remarks or suggestions about these programs can be send to:
  105. lemmens@dv.twi.tudelft.nl
  106.